home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / src / config / auto-aux / setjmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-18  |  143 b   |  13 lines  |  [TEXT/R*ch]

  1. #include <setjmp.h>
  2.  
  3. main()
  4. {
  5.   jmp_buf buf;
  6.   int i;
  7.   i = _setjmp(buf);
  8.   if (i == 0) {
  9.     _longjmp(buf, 12345);
  10.   }
  11.   exit (i != 12345);
  12. }
  13.